feat: add mentions command and search pagination#197
Open
Conversation
f541447 to
c64a411
Compare
doistbot
reviewed
Apr 28, 2026
Member
doistbot
left a comment
There was a problem hiding this comment.
This introduces the tw mentions command alongside new --all pagination for search, cleanly centralizing the underlying search resolution logic. Reusing the output path effectively enhances the maintainability of the CLI's search capabilities. A few adjustments are needed to ensure empty result sets still return valid structured objects in JSON and NDJSON modes, and to deduplicate the shared search CLI flags to prevent future drift between the commands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds a dedicated
tw mentionscommand for fetching content that mentions the current user, with the same filters and output modes as search plus an--alloption to walk every results page.Mentions were previously only reachable through
tw search --mention-me, which still required a query string and left full backlog traversal to manual cursor handling.The change also refactors shared search plumbing so
tw searchreuses the same resolver and output path, while the CLI docs and generated Twist skill content now advertise bothtw mentionsandtw search --all.Validation:
npm test,npx vitest run src/commands/search.test.ts src/commands/mentions.test.ts,npm run type-check,npm run lint:check, andnpm run check:skill-sync.